Uniform Function Call Syntax
UFCS
hoge(a, b)
という関数呼び出しを
a.hoge(b)
のように書ける構文
Nim
とか
D
にある
pipeline operator
を
.
で表現してる感じね
mrsekut.icon
Nim
https://nim-by-example.github.io/procs/
https://nim-lang.org/docs/manual.html#procedures-method-call-syntax
D
https://dlang.org/spec/function.html#pseudo-member
https://tour.dlang.org/tour/en/gems/uniform-function-call-syntax-ufcs
https://en.wikipedia.org/wiki/Uniform_Function_Call_Syntax